home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000140_news@columbia.edu _Sun Aug 4 16:23:04 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id QAA08090 for <kermit.misc@watsun.cc.columbia.edu>; Sun, 4 Aug 1996 16:23:03 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id QAA06257 for kermit.misc@watsun; Sun, 4 Aug 1996 16:23:02 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Linux Kermit to Wyse50 Host Questions
  8. Date: 4 Aug 1996 20:22:42 GMT
  9. Organization: Columbia University
  10. Lines: 54
  11. Message-ID: <4u30qi$lfg@apakabar.cc.columbia.edu>
  12. References: <4u2oq5$9do@apollo.kosone.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4u2oq5$9do@apollo.kosone.com>,
  16. Richard Potter <rcpotter@kosone.com> wrote:
  17. : As a extra security measure, I have put a PC running Linux between our
  18. : modem lines and our MUX unit. The concept is to have a modem answer on
  19. : com1 (ttys0), which the login would have kermit connect to the host via
  20. : com2 (cua1).
  21. : The Host is running a wyse50 emulation, and I have set the logins TERM
  22. : enviroment as wyse50 on the Linux box, but the emulation is still wrong.
  23. : Do I have kermit configured wrong, or is this a termcap issue?
  24. : My kermit line is: kermit -l /dev/cua1 -b 19200 -c
  25. : Any help would be appreciated, this is my first use of kermit.
  26. So in other words, after login C-Kermit is to provide a transparent pipe
  27. between com1 and com2.  So terminal emulation and termcaps are completely
  28. irrelevant on the Linux system and to the copy of C-Kermit that is running
  29. on Linux.  The *user's* terminal emulation (not Linux's) should be set to
  30. match the terminal type needed on the host, Wyse50 in this case.
  31.  
  32. To ensure that C-Kermit on Linux provides a totally transparent pipe,
  33. you should (a) get the 6.0.192 Beta version from kermit.columbia.edu, and
  34. (b) have it execute the following command file:
  35.  
  36.   set modem type none
  37.   set port /dev/cua1
  38.   set speed 19200                     ; Or whatever
  39.   set flow rts/cts                    ; Not Xon/Xoff
  40.   set parity none                     ; No parity
  41.   set term byte 8                     ; 8-bit data
  42.   set term character-set transparent  ; No character-set translation
  43.   set term apc off                    ; Be transparent to APC sequences
  44.   set term autodownload off           ; * Be transparent to Kermit packets
  45.   set term escape disabled            ; * No escape character
  46.   set carrier on                      ; Close connection if carrier drops
  47.   connect                             ; Start the connection
  48.   exit                                ; Exit when it closes
  49.  
  50. The commands marked with * are new to version 6.0.  You'll need SET TERM
  51. ESCAPE DISABLED to make the connection transparent to ALL control characters,
  52. rather than to all of them except one, which is important if you want to
  53. allow XYZMODEM transfers between the user and the host, or you need the
  54. Ctrl-\ character passed through transparently for any other reason.  Then
  55. you have to make sure that the host switches off the carrier (CD) signal
  56. when the user logs out, because that's the only way Linux will get control
  57. of the port back.
  58.  
  59. So say the above file is /usr/local/kermit/connect, start Kermit this way:
  60.  
  61.   kermit /usr/local/kermit/connect
  62.  
  63. - Frank